3df9b31fe9c34e1d616edc6342e8beba56d9c351,src/shogun2-util/src/main/java/de/terrestris/shogun2/util/interceptor/OgcMessage.java,OgcMessage,isWcsGetCapabilities,#,276
Before Change
* @return
*/
public boolean isWcsGetCapabilities() {
return (this.isWcs() &&
this.getOperation().equalsIgnoreCase(OgcNaming.OPERATION_GET_CAPABILITIES)) ?
true : false;
}
After Change
* @return
*/
public boolean isWcsGetCapabilities() {
return this.isWcs() &&
this.getOperation() != null &&
this.getOperation().equalsIgnoreCase(OgcNaming.OPERATION_GET_CAPABILITIES);
}